golang.org/x/tools/go/packages.flatPackage.Imports (field)

6 uses

	golang.org/x/tools/go/packages (current package)
		packages.go#L471: 	Imports         map[string]string `json:",omitempty"`
		packages.go#L498: 		flat.Imports = make(map[string]string, len(p.Imports))
		packages.go#L500: 			flat.Imports[path] = ipkg.ID
		packages.go#L525: 	if len(flat.Imports) > 0 {
		packages.go#L526: 		p.Imports = make(map[string]*Package, len(flat.Imports))
		packages.go#L527: 		for path, id := range flat.Imports {